[PR]
最終更新日:
2000/02/04
1: //*********************************************************
2: // プロジェクト: TOOLS::SHA1 - Secure Hash Algorithm
3: // ファイル名: sha1.h
4: //*********************************************************
5: #ifndef SHA1_HEAD_INCLUDED
6: #define SHA1_HEAD_INCLUDED
7:
8:
9: //*********************************************************
10: // コンパイル環境の指定
11: //*********************************************************
12: #ifndef PRIVATE_TOOLS_HEAD_INCLUDED // 冗長ガード
13: #include <header/_tools.h>
14: #ifndef PRIVATE_TOOLS_HEAD_INCLUDED // ガード名の検査
15: #error "? PRIVATE_TOOLS_HEAD_INCLUDED"
16: #endif // #ifndef PRIVATE_TOOLS_HEAD_INCLUDED
17: #endif // #ifndef PRIVATE_TOOLS_HEAD_INCLUDED
18:
19:
20: //*********************************************************
21: // マクロ の 定義
22: //*********************************************************
23: #define SHA1_HASHSIZE ( 20 ) // BYTE sha1[ SHA1_HASHSIZE ]
24: #define SHA1_HASHTEXTSIZE ( 2 * SHA1_HASHSIZE ) //
25:
26:
27: //*********************************************************
28: // 構造体 の 宣言
29: //*********************************************************
30: typedef struct SHA1_CTX_tag SHA1_CTX;
31:
32:
33: //*********************************************************
34: // 関数 の 宣言
35: //*********************************************************
36: #ifdef __cplusplus
37: extern "C" {
38: #endif
39:
40:
41: // sha1.cpp
42: SHA1_CTX *SHA1_CreateAlgorithm( void );
43: bool SHA1_DestroyAlgorithm( SHA1_CTX *context );
44: bool SHA1_InitData( SHA1_CTX *context );
45: bool SHA1_AddData( SHA1_CTX *context, const void *data, int length );
46: bool SHA1_GetHash( const SHA1_CTX *context, void *digest, int bufsize );
47: bool SHA1_GetHashText( const SHA1_CTX *context, char *buf, int bufsize );
48:
49:
50: #ifdef __cplusplus
51: } // extern "C"
52: #endif
53:
54:
55: #endif // #ifndef SHA1_HEAD_INCLUDED
56:
57:
58: //** end **
59:
参照:
sha1.cpp, main.cpp
このページは cpp2web が出力しました。
水無瀬 優 postmaster@katsura-kotonoha.sakura.ne.jp
http://katsura-kotonoha.sakura.ne.jp/prog/code/tools/misc/sha1_h.shtml